home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_12_05
/
plauger
/
unset.c
< prev
Wrap
C/C++ Source or Header
|
1994-03-08
|
244b
|
13 lines
---------------- Listing 12: The function ios::unset(fmtflags) ----------
// iosunsetf -- ios::unsetf(fmtflags)
#include <ios>
void ios::unsetf(fmtflags mask)
{ // reset format bits under mask
_Fmtfl &= ~mask;
}